/* DOMINO HALLOWEEN
/* řádek pod finální cenou – 16px + tenký oranžový hranatý rámeček */
.price-with-code{
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;

  display: inline-block;          /* aby šel box centrovat a obepínal text */
  padding: 4px 8px;               /* tenký vnitřní odsaz */
  border: 1px solid #ff6a00;      /* tenký oranžový rámeček */
  border-radius: 0;               /* hranaté rohy */
  background: transparent;
}

.price-with-code .pwc-value,
.price-with-code .pwc-code{
  color:#ff6a00;                  /* oranžová pro cenu i kód */
  font-weight:600;
}

.price-with-code .pwc-text{
  color:#000;                     /* zbytek černě */
}


.price-with-code {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #ff6a00; /* oranžový rámeček */
  border-radius: 0;
  background: transparent;
}
.price-with-code .pwc-value,
.price-with-code .pwc-code { color:#ff6a00; font-weight:600; }
.price-with-code .pwc-text { color:#000; }



/* čísla oranžově; vše ostatní bílé */
#halloween-sale-countdown .num { color:#ff6a00; }
#halloween-sale-countdown .title{ font-weight:700; color:#ff6a00; text-transform:uppercase; }

/* desktop ladění (už máš): víc vlevo, menší text */
@media (min-width: 900px){
  #halloween-sale-countdown{
    right: 160px !important;
    top: -1px !important;
    font-size: 16px !important;
    padding: 4px 8px !important;
    letter-spacing: .3px !important;
  }
}

/* mobil < 750px: lišta NAD toggle blokem (už vkládáme nad něj) */
@media (max-width: 749px){
  #halloween-sale-countdown{
    font-size: 14px !important;
    padding: 6px 10px !important;
    border-radius: 0 !important;
  }
  #halloween-sale-countdown .chunk{ white-space:nowrap; }
}
@media (max-width: 749px){
  #halloween-sale-countdown .label{
    display: block;          /* popisek na samostatný řádek */
    margin-bottom: 4px;      /* malý rozestup nad odpočtem */
    text-align: center;      /* zarovnat hezky na střed */
  }
  #halloween-sale-countdown .chunk{
    display: inline-block;   /* ať se skupiny drží pohromadě */
    margin: 0 4px;
  }
}
/* MOBILE FIX – zmenšit a srovnat price-with-code v kartách/slideru */
@media (max-width: 520px){
  .price-with-code{
    margin-top: 8px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    padding: 6px 8px !important;

    display: block !important;     /* místo inline-block */
    width: 100% !important;        /* ať to sedí v kartě */
    box-sizing: border-box;
    text-align: center;
  }

  .price-with-code .pwc-value{ font-size: 20px !important; font-weight: 800 !important; }
  .price-with-code .pwc-text { font-size: 14px !important; font-weight: 700 !important; }
  .price-with-code .pwc-code{ font-size: 18px !important; font-weight: 900 !important; }

  /* aby se to na úzkých kartách nerozbíjelo */
  .price-with-code .pwc-text,
  .price-with-code .pwc-code{
    white-space: nowrap;
  }
}
/* MOBILE FIX – price-with-code kompaktně (2 řádky) */
@media (max-width: 749px){
  .price-with-code{
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 6px auto 0 !important;
    padding: 6px 8px !important;

    font-size: 12px !important;
    line-height: 1.05 !important;

    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: baseline !important;
    text-align: center !important;
    gap: 4px 6px !important;
  }

  /* CENA = vždy první řádek sama */
  .price-with-code .pwc-value{
    flex: 0 0 100% !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin: 0 0 2px 0 !important;
  }

  /* Druhý řádek: "s kódem" + kód vedle sebe */
  .price-with-code .pwc-text{
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .price-with-code .pwc-code{
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}
